home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / WIN_PRO / VIEWS.ZIP;1 / CVDZIP.EXE / CVABOUT.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-09-20  |  616 b   |  44 lines

  1. /*
  2.     cvabout.h
  3.  
  4.     "Bouncing" about box
  5.  
  6.     C++/Views 2.0 Demo
  7.     Copyright (c) 1992, by Liant Software Corp.
  8.     ALL RIGHTS RESERVED.
  9.  
  10.     Revision History:
  11.     -----------------
  12. */
  13.  
  14. #ifndef cvabout_h
  15. #define cvabout_h
  16.  
  17. #include "dialog.h"
  18.  
  19. class VButton;
  20. class VTimer;
  21. class Bouncer;
  22.  
  23. class BounceAbout : public VDialog {
  24. private:
  25.     VOrdCollect bouncers;
  26.     VTimer       *timer;
  27.  
  28.     int            count;
  29.  
  30. public:
  31.     BounceAbout(VWindow *pwin);
  32.     ~BounceAbout();
  33.  
  34.     boolean free();
  35.  
  36.     boolean paint();
  37.     boolean startBouncing();
  38.     boolean bounceThem();
  39.     boolean aboutBtn(VButton *);
  40. };
  41.  
  42. #endif /* cvabout_h */
  43.  
  44.